* Makefile.in (install): Do install the programs listed in
authorJim Blandy <jimb@redhat.com>
Thu, 27 May 1993 02:46:57 +0000 (02:46 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 27 May 1993 02:46:57 +0000 (02:46 +0000)
INSTALLABLE_SCRIPTS.  Make the renaming loop use INSTALLABLES and
INSTALLABLE_SCRIPTS, instead of writing the programs out.

lib-src/Makefile.in

index 85565fc5f433080c5d81642943a80c5943c2b8d7..a1a79c255cd7efb5f8837e2a92de5160d5bd7ec6 100644 (file)
@@ -138,14 +138,14 @@ ${archlibdir}: all
 install: ${archlibdir}
        @echo
        @echo "Installing utilities for users to run."
-       for file in ${INSTALLABLES} ; do \
+       for file in ${INSTALLABLES}  ${INSTALLABLE_SCRIPTS}; do \
          cp $${file} ${bindir}/$${file}.new ; \
          chmod 755 ${bindir}/$${file}.new ; \
         done
        @echo
        @echo "Changing the owner and group of utility programs to \`bin'."
        @echo "(You may ignore errors here if you don't care about this.)"
-       -for file in emacsclient etags ctags b2m ; do \
+       -for file in ${INSTALLABLES}  ${INSTALLABLE_SCRIPTS} ; do \
          chgrp bin ${bindir}/$${file}.new ; \
          chown bin ${bindir}/$${file}.new ; \
          rm -f ${bindir}/$${file} ; \